encoding/binary.bigEndian.Uint32 (method, view implemented interface methods)
16 uses
encoding/binary (current package)
binary.go#L176: func (bigEndian) Uint32(b []byte) uint32 {
compress/zlib
reader.go#L114: checksum := binary.BigEndian.Uint32(z.scratch[:4])
reader.go#L163: checksum := binary.BigEndian.Uint32(z.scratch[:4])
github.com/gotd/td/session/tdesktop
key_data.go#L57: count := int(binary.BigEndian.Uint32(infoDecrypted))
key_data.go#L63: idx := binary.BigEndian.Uint32(infoDecrypted[i*4:])
net/http
h2_bundle.go#L1813: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L2382: Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
h2_bundle.go#L2518: LastStreamID: binary.BigEndian.Uint32(p[:4]) & (1<<31 - 1),
h2_bundle.go#L2519: ErrCode: http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
h2_bundle.go#L2565: inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit
h2_bundle.go#L2802: v := binary.BigEndian.Uint32(payload[:4])
h2_bundle.go#L2851: return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
h2_bundle.go#L3037: return p[4:], binary.BigEndian.Uint32(p[:4]), nil
sniff.go#L271: boxSize := int(binary.BigEndian.Uint32(data[:4]))
vendor/golang.org/x/text/unicode/norm
forminfo.go#L189: key := binary.BigEndian.Uint32(buf[:4])
forminfo.go#L190: val := binary.BigEndian.Uint32(buf[4:])
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |